video #bgvideo {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(placeholder.jpg) no-repeat;
    background-size: cover;
}

#hero{
    width: 100%;
    overflow:hidden;
    display:block;
    height: 400px;
    /*filter: blur(5px) opacity(.5);
    -webkit-filter:blur(5px)  opacity(.5);*/
}

#hero-overlay{
    background-color: darkgray;
    height: 400px;
    width: 100%;
    opacity: 0.8;
    top: 66px;
    left: 0;
    position: absolute;
    padding: 0;
}
#hero-overlay-image{
    background: none;
    height: 400px;
    width: 100%;
    opacity: 1;
    top: 66px;
    left: 0;
    position: absolute;
    padding: 0;
}

#hero-logo{
    position: absolute;
    top: 0;
    bottom: 0;
    left:0;
    right:0;
    margin: auto;
}


/* many phones don't autoplay the video, a play button appears
   instead, since we don't want this, we just show placeholder.
@media screen and (max-device-width: 768px) {
    #hero {
        background: url(placeholder.jpg) no-repeat;
        background-size: cover;
    }
    #bgvideo {
        display: none;
    }
}
*/